home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / orphan11.zip / ORPHAN.REF < prev   
Text File  |  1997-06-28  |  4KB  |  220 lines

  1. @#start
  2. @do moveback
  3. @datanewday orphan.idf
  4. @dataload orphan.idf &playernum `p20
  5. @IF `p20 IS 1 THEN DO
  6.  @BEGIN
  7.   @DO GOTO LOCKED
  8.  @END
  9. @clear screen
  10. @show
  11.  
  12. `2     As you enter the building, you see a broken sign hanging from the door.
  13. It reads `1GREENTREE ORPHANAGE`2.  As you push the door open, it squeaks on rusty
  14. hinges.
  15.  
  16. @key
  17. @show
  18. `2     This place is obviously a relic of the days when the Red Dragon made
  19. orphans of many children.  Now it is very run down.  The windows are broken,
  20. and the furniture is in disrepair.
  21.  
  22. @key
  23. @show
  24. `2     The sounds of children playing (and fighting) can be heard outside.  It
  25. is apparent that the orphanage suffers from a serious lack of funding.
  26.  
  27. @key
  28. @do goto entrance
  29. @#entrance
  30. @clear screen
  31. @show
  32.  
  33. ?7hD
  34.  
  35.  
  36.  
  37.  
  38. C▄▄▄▄▄▄▄▄
  39. C▄████████████████
  40. C████░░████████▀███·
  41. C▄████░░░████████   
  42. C█████░░░░   ▀▀▀██CAn elderly woman is scrubbing the floor.
  43. C█████░░░░C██
  44.    ███████░░░░C██▄
  45. ▄▄███████████C▀▀▀▄▄
  46. ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  47.  
  48.  
  49. @do `v01 is 1
  50. @choice
  51. Leave before she sees me.
  52. Speak with the woman.
  53. @if response is 1 then do
  54.  @begin
  55.  @do goto done
  56.  @end
  57. @clear screen
  58. @show
  59.  
  60. `2     You clear your throat, and the woman looks up from her work.
  61.  
  62. `0     "Can I help you?" she asks.
  63.  
  64. @do `v01 is 1
  65. @choice
  66. No thanks, I'm just looking around.
  67. I'd like to make a donation.
  68. Why do you waste your time with these stupid brats?
  69. @if response is 1 then do
  70.  @begin
  71.  @do goto entrance
  72.  @end
  73. @if response is 2 then do
  74.  @begin
  75.  @do goto donate
  76.  @end
  77. @if response is 3 then do
  78.  @begin
  79.  @do goto brats
  80.  @end
  81.  
  82. @#brats
  83. @clear screen
  84. @show
  85.  
  86. `0     The woman stares at you in disbelief.  Suddenly, tears well up in her
  87. eyes.
  88. @key
  89. @show
  90.  
  91. `0     "Because noone else will," she says quietly.  She asks you to leave and
  92. returns to her work.
  93. @key
  94. @do `p07 - 2
  95. @show
  96.  
  97. `5    ALIGNEMENT GOES DOWN BY 2
  98. @key
  99. @do goto done
  100.  
  101. @#donate
  102. @clear screen
  103. @show
  104.  
  105. `0     The woman stares at you in disbelief.  Suddenly, tears of joy well up in
  106. her eyes.
  107.  
  108. `0     "A donation?!  Bless you!  As you can see, our donations are few and far
  109. between.  Anything you could give would help us immensely."
  110.  
  111. @key
  112. @if money < 5 then do
  113.  @begin
  114.  @do goto broke
  115.  @end
  116.  
  117. @clear screen
  118. @show
  119.  
  120. `2How much would you like to donate?
  121.  
  122. @do `v01 is 1
  123. @choice
  124. 5
  125. 500
  126. 5000
  127. @if response is 1 then do
  128.  @begin
  129.  @do goto five
  130.  @end
  131. @if response is 2 then do
  132.  @begin
  133.  @do goto hundred
  134.  @end
  135. @if response is 3 then do
  136.  @begin
  137.  @do goto thousand
  138.  @end
  139.  
  140. @#broke
  141. @clear screen
  142. @show
  143.  
  144. `2     You realize that you are not carrying enough money with you.  You tell
  145. the woman that you will be back later, and you quietly leave.
  146.  
  147. @key
  148. @do goto done
  149.  
  150. @#five
  151. @clear screen
  152. @show
  153.  
  154. `0     You hand 5 gold pieces to the woman.  She thanks you and takes the money.
  155.  
  156. @key
  157. @do money - 5
  158. @show
  159. `5     You feel really good about yourself.
  160.  
  161. @key
  162. @do goto done
  163.  
  164. @#hundred
  165. @if money < 500 then do
  166.  @begin
  167.  @do goto broke
  168.  @end
  169. @clear screen
  170. @show
  171.  
  172. `0     You hand 500 gold pieces to the woman.  She gives you a big smile, and
  173. thanks you as she takes the money.
  174.  
  175. @key
  176. @do money - 500
  177. @do `p07 + 1
  178. @show
  179. `5     ALIGNMENT GOES UP BY 1
  180.  
  181. @key
  182. @do goto done
  183.  
  184. @#thousand
  185. @if money < 5000 then do
  186.  @begin
  187.  @do goto broke
  188.  @end
  189. @clear screen
  190. @show
  191.  
  192. `0     You hand 5000 gold pieces to the woman.  She gives you a HUGE smile, and
  193. thanks you as she takes the money.
  194.  
  195. @key
  196. @do money - 5000
  197. @do `p07 + 5
  198. @show
  199. `5     ALIGNMENT GOES UP BY 5
  200.  
  201. @key
  202. @do goto done
  203.  
  204. @#done
  205. @clear screen
  206. @show
  207.  
  208. `0     As you leave the orphanage, the door squeaks loudly on its rusty hinges.
  209.  
  210. @key
  211. @datasave orphan.idf &playernum 1
  212. @drawmap
  213. @update
  214. @closescript
  215.  
  216. @#locked
  217.   @DO SAYBAR
  218. The orphanage is locked.  Try again tomorrow.
  219. @closescript
  220.